1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.orekit.propagation.semianalytical.dsst.utilities;
18
19 import java.io.Serializable;
20 import java.util.ArrayList;
21
22 import org.hipparchus.analysis.interpolation.HermiteInterpolator;
23 import org.hipparchus.util.FastMath;
24 import org.orekit.time.AbsoluteDate;
25
26
27
28
29
30
31
32
33
34
35
36
37
38 public class ShortPeriodicsInterpolatedCoefficient implements Serializable {
39
40
41 private static final long serialVersionUID = 20160319L;
42
43
44 private ArrayList<double[]> values;
45
46
47 private ArrayList<AbsoluteDate> abscissae;
48
49
50 private int interpolationPoints;
51
52
53 private int latestClosestNeighbor;
54
55
56
57
58 public ShortPeriodicsInterpolatedCoefficient(final int interpolationPoints) {
59 this.interpolationPoints = interpolationPoints;
60 this.abscissae = new ArrayList<AbsoluteDate>();
61 this.values = new ArrayList<double[]>();
62 this.latestClosestNeighbor = 0;
63 }
64
65
66
67
68
69 public double[] value(final AbsoluteDate date) {
70
71 final int[] neighbors = getNeighborsIndices(date);
72
73
74 final HermiteInterpolator interpolator = new HermiteInterpolator();
75 for (int i : neighbors) {
76 interpolator.addSamplePoint(abscissae.get(i).durationFrom(date), values.get(i));
77 }
78
79
80 return interpolator.value(0.0);
81
82 }
83
84
85
86
87
88 private int[] getNeighborsIndices(final AbsoluteDate date) {
89 final int sizeofNeighborhood = FastMath.min(interpolationPoints, abscissae.size());
90 final int[] neighborsIndices = new int[sizeofNeighborhood];
91
92
93
94
95 if (interpolationPoints >= abscissae.size()) {
96 for (int i = 0; i < sizeofNeighborhood; i++) {
97 neighborsIndices[i] = i;
98 }
99 } else {
100
101 int inf = getClosestNeighbor(date);
102 int sup = inf + 1;
103
104 while (sup - inf < interpolationPoints) {
105 if (inf == 0) {
106 sup++;
107 } else if (sup >= abscissae.size()) {
108 inf--;
109 } else {
110 final double lowerNeighborDistance = FastMath.abs(abscissae.get(inf - 1).durationFrom(date));
111 final double upperNeighborDistance = FastMath.abs(abscissae.get(sup).durationFrom(date));
112
113 if (lowerNeighborDistance <= upperNeighborDistance) {
114 inf--;
115 } else {
116 sup++;
117 }
118 }
119 }
120
121 for (int i = 0; i < interpolationPoints; ++i) {
122 neighborsIndices[i] = inf + i;
123 }
124
125 }
126
127 return neighborsIndices;
128 }
129
130
131
132
133
134 private int getClosestNeighbor(final AbsoluteDate date) {
135
136
137
138
139
140 int closestNeighbor = latestClosestNeighbor;
141
142
143 if (date.compareTo(abscissae.get(0)) <= 0) {
144 closestNeighbor = 0;
145 }
146
147 else if (date.compareTo(abscissae.get(abscissae.size() - 1)) >= 0) {
148 closestNeighbor = abscissae.size() - 1;
149 }
150
151
152 else {
153 int lowerBorder = latestClosestNeighbor;
154 int upperBorder = latestClosestNeighbor;
155
156 final int searchDirection = date.compareTo(abscissae.get(latestClosestNeighbor));
157 if (searchDirection > 0) {
158 upperBorder++;
159 while (date.compareTo(abscissae.get(upperBorder)) > 0) {
160 upperBorder++;
161 lowerBorder++;
162 }
163 }
164 else {
165 lowerBorder--;
166 while (date.compareTo(abscissae.get(lowerBorder)) < 0) {
167 upperBorder--;
168 lowerBorder--;
169 }
170 }
171
172 final double lowerDistance = FastMath.abs(date.durationFrom(abscissae.get(lowerBorder)));
173 final double upperDistance = FastMath.abs(date.durationFrom(abscissae.get(upperBorder)));
174
175 closestNeighbor = (lowerDistance < upperDistance) ? lowerBorder : upperBorder;
176 }
177
178
179
180 this.latestClosestNeighbor = closestNeighbor;
181 return closestNeighbor;
182 }
183
184
185
186 public void clearHistory() {
187 abscissae.clear();
188 values.clear();
189 }
190
191
192
193
194
195 public void addGridPoint(final AbsoluteDate date, final double[] value) {
196
197 if (abscissae.isEmpty()) {
198 abscissae.add(date);
199 values.add(value);
200 }
201
202 else if (abscissae.contains(date)) {
203 values.set(abscissae.indexOf(date), value);
204 }
205
206
207 else {
208 final int closestNeighbor = getClosestNeighbor(date);
209 final int index = (date.compareTo(abscissae.get(closestNeighbor)) < 0) ? closestNeighbor : closestNeighbor + 1;
210 abscissae.add(index, date);
211 values.add(index, value);
212 }
213 }
214 }